How would you use Web Workers with WebAssembly (WASM) for CPU-intensive tasks? What makes this combination powerful?
Load WASM module inside worker, compile and instantiate, then use worker to run WASM computations off the main thread. The combination provides near-native speed + non-blocking UI.